跳到主要内容

Fortran 声明:整数

integer a ! 默认长整
integer*4 b ! 长整
integer*2 c ! 短整
integer*1 d ! 更短
integer a, b, c
a = 3
b = 3/2 ! 结果将是 1